home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Dev / misc / stlport.readme < prev    next >
Text File  |  2004-09-23  |  1KB  |  33 lines

  1. Short:    STLport C++ standard library
  2. Author:   ssolie@telus.net (Steven Solie)
  3. Uploader: ssolie@telus.net (Steven Solie)
  4. Version:  4.6.2
  5. Type:     dev/misc
  6. Requires: AmigaOS 4.0, GCC 3.4.1, clib2 1.172
  7.  
  8. This is a fairly complete port of STLport 4.6.2 intended for modern
  9. C++ development. The complete STLport iostreams is implemented along
  10. with the usual template-based containers, algorithms and iterators.
  11.  
  12. Quick instructions for installation:
  13. 1. download and unarchive contents
  14. 2. cd src/
  15. 3. make -f gcc-amigaos.mak
  16. 4. cd test/eh/
  17. 5. make -f gcc-amigaos.mak
  18. 6. verify test suite runs without error
  19. 7. cd src/
  20. 8. make -f gcc-amigaos.mak install
  21.  
  22. From now on you can choose to use STLport by using a compile line
  23. similar to the following:
  24.  
  25. g++ -o <out-file> -ISDK:Local/include/stlport <in-file> -lstlport_gcc
  26.  
  27.  
  28. Please note that I've removed a bunch of files and directories to
  29. reduce the size of the archive instead of providing diffs. You can
  30. download the original full archive from the STLport site.
  31.  
  32. More information about STLport can be found at http://www.stlport.org/
  33.